home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo Installation for ZeusBot Quake Mod version 1.0
- echo.
-
- if [%1] == [] goto usage
- if not [%2] == [] goto usage
-
- if exist %1\quake.exe goto gooddir
-
- :baddir
- echo Quake does not appear to be installed in %1.
- echo.
- goto usage
-
- :gooddir
- md %1\zeus10
-
- copy progs.dat %1\zeus10
- copy zeus10.txt %1\zeus10
- copy source.zip %1\zeus10
- copy zeusbot.bat %1
-
- cd %1
-
- goto end
-
- :usage
- echo Usage:
- echo.
- echo INSTALL dir_name [ENTER]
- echo.
- echo where dir_name is the directory where Quake is installed.
- echo.
- echo e.g. INSTALL C:\GAMES\QUAKE
- echo.
- :end
-